home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
041-050
/
amok44
/
m2ced
/
txt
/
config.def
< prev
next >
Wrap
Text File
|
1993-11-04
|
1KB
|
61 lines
(**********************************************************************
:Program. Config.def
:Contents. Configuration of M2CED
:Author. Steffen Reith
:Address. Hessenstr. 64, D-8700 Würzburg
:Copyright. Shareware
:Language. Modula-2
:Translator. M2Amiga A+L V3.2d
:Imports. req
:History. V1.0 18.June 1990
**********************************************************************)
DEFINITION MODULE Config;
FROM req IMPORT PathType;
CONST MaxWS=31;
MaxCM=63;
ConfigFile='S:M2CED.config';
WindowDefault='CON:0/11/500/100/';
ContMsgDefault='
Press ALT Return to continue
';
compileDefault=51;
linkDefault=40;
startDefault=33;
loadDefault=18;
findErrorDefault=23;
cancelDefault=69;
continueDefault=68;
TYPE WindowString=ARRAY[0..MaxWS] OF CHAR;
ContMsgString=ARRAY[0..MaxCM] OF CHAR;
P=RECORD
Window:WindowString;
ContMsg:ContMsgString;
compileN,linkN,startN:CARDINAL;
loadN,findErrorN,cancelN,continueN:CARDINAL;
END;
VAR Para:P;
PROCEDURE WriteFile(VAR File:PathType);
(*:Input. Name of current file
:Semantic. Saves the name for later restart
:Note. Creates a file: s:M2CED.restart
*)
PROCEDURE ReadFile (VAR File:PathType);
(*:Output. Name of a file to be loaded
:Semantic. Gives you the name of a file
:Notes. Read from s:M2CED.restart
:Notes. See WriteFile
*)
END Config.